type encoding/binary.encoder
13 uses
encoding/binary (current package)
binary.go#L386: e := &encoder{order: order, buf: buf}
binary.go#L463: type encoder coder
binary.go#L471: func (e *encoder) bool(x bool) {
binary.go#L486: func (e *encoder) uint8(x uint8) {
binary.go#L497: func (e *encoder) uint16(x uint16) {
binary.go#L508: func (e *encoder) uint32(x uint32) {
binary.go#L519: func (e *encoder) uint64(x uint64) {
binary.go#L526: func (e *encoder) int8(x int8) { e.uint8(uint8(x)) }
binary.go#L530: func (e *encoder) int16(x int16) { e.uint16(uint16(x)) }
binary.go#L534: func (e *encoder) int32(x int32) { e.uint32(uint32(x)) }
binary.go#L538: func (e *encoder) int64(x int64) { e.uint64(uint64(x)) }
binary.go#L609: func (e *encoder) value(v reflect.Value) {
binary.go#L688: func (e *encoder) skip(v reflect.Value) {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)